home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2006 December
/
PCWDEC06.iso
/
Software
/
Trial
/
Paint Shop Pro XI
/
Data1.cab
/
rand.py.0160FC08_F3D9_4869_9D41_C611C16F42D5
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2005-06-08
|
298 b
|
14 lines
# Module 'rand'
# Don't use unless you want compatibility with C's rand()!
import whrandom
def srand(seed):
whrandom.seed(seed%256, seed/256%256, seed/65536%256)
def rand():
return int(whrandom.random() * 32768.0) % 32768
def choice(seq):
return seq[rand() % len(seq)]